home *** CD-ROM | disk | FTP | other *** search
/ Old Testament Foundatiosn with Philip Yancey / Old Testament Foundatiosn with Philip Yancey - Disc 2.iso / pc / data / notes.dir / 00037.ls < prev    next >
Encoding:
Text File  |  1996-09-09  |  669 b   |  19 lines

  1. on exitFrame
  2.   global gOnIBM, gHelpSaveWindow
  3.   if gOnIBM then
  4.     if objectp(gHelpSaveWindow) then
  5.       forget(gHelpSaveWindow)
  6.     end if
  7.     set horzOrigin to the stageLeft + 25
  8.     set vertOrigin to the stageTop + 210
  9.     set myNotesWindowRect to rect(horzOrigin, vertOrigin, horzOrigin + 240, vertOrigin + 100)
  10.     set gHelpSaveWindow to window "helpSaveMovie"
  11.     set the rect of gHelpSaveWindow to myNotesWindowRect
  12.     set the fileName of gHelpSaveWindow to "helpsave.dir"
  13.     set the windowType of gHelpSaveWindow to 2
  14.     set the titleVisible of gHelpSaveWindow to 1
  15.     set the title of gHelpSaveWindow to "Save Help"
  16.     open(gHelpSaveWindow)
  17.   end if
  18. end
  19.